HTMLify
style.css
Views: 14 | Author: huxn-webdev
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | body { margin: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; height: 100vh; background: black; overflow: hidden; } .image-container { position: relative; width: 200px; height: 200px; transform-style: preserve-3d; transform: perspective(1000px) rotateY(0deg); transition: transform 0.7s; } .image-container span { position: absolute; top: 0; left: 0; width: 100%; transform: rotateY(calc(var(--i) * 45deg)) translateZ(400px); } .image-container span img { position: absolute; left: 0; top: 0; width: 100%; } .btn-container { position: relative; width: 80%; } .btn { position: absolute; bottom: -80px; background: crimson; color: #fff; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; } #prev { left: 20%; } #next { right: 20%; } .btn:hover { filter: brightness(1.5); } |